01
The Evolution of AI: From Symbolic Logic to Biologically-Inspired Computing
PolyU COMP5511 Lecture 7
00:00

The evolution of Artificial Intelligence marks a definitive paradigm shift from Symbolic AI (GOFAI) to Connectionism. Historically, AI relied on "top-down" deductive reasoning, where human-coded rules governed every outcome. This approach, while precise for logic puzzles, failed at Moravec’s Paradox—the realization that high-level reasoning is computationally easy, while low-level sensorimotor skills (like recognizing a face) are nearly impossible to hard-code.

In contrast, Biologically-Inspired Computing adopts a "bottom-up" inductive learning strategy. Rather than following static instructions, artificial neural networks utilize distributed representations to discern patterns from raw data. While these architectures mimic the parallel processing and plasticity of the human brain, it is vital to recognize them as mathematical abstractions. They leverage linear algebra and calculus to achieve functional results, prioritizing computational efficiency over biological fidelity.

Python Implementation
Question 1
Which concept explains why hard-coding a robot to walk is more difficult than programming it to play chess?
A. The Turing Test
B. Moravec’s Paradox
C. Connectionist Duality
D. Inductive Bias
Case Study: Machine Translation Evolution
Read the scenario below and answer the question.
In the early 2000s, machine translation relied on "Statistical Phrase-Based" models (symbolic/statistical rules). When Google shifted to "Neural Machine Translation" (GNMT) in 2016, the system stopped looking at words as individual tokens and began viewing sentences as vectors in a high-dimensional space.
Q
Why did the neural approach handle slang and context better than the rule-based approach?
Answer:
The neural approach utilizes "bottom-up" inductive learning. By processing millions of documents, it identifies probabilistic relationships between words in context, rather than relying on a human-defined dictionary that cannot keep up with the fluid nature of slang and grammar.